home *** CD-ROM | disk | FTP | other *** search
/ Dino Crisis Digital Press Kit / Dino Crisis Digital Press Kit.iso / mac / g / 00067_Script_67 < prev    next >
Text File  |  1999-08-31  |  755b  |  26 lines

  1. on mousedown
  2.   puppetsound "rr"
  3.   if the visible of sprite 120 = false then
  4.     set the movierate of sprite 10 to 0
  5.     set the visible of sprite 19 to false
  6.     set the visible of sprite 20 to true
  7.     set the visible of sprite 21 to false
  8.     set the visible of sprite 22 to false
  9.     set the visible of sprite 23 to false
  10.   else
  11.     set the movierate of sprite 10 to 0
  12.     set the visible of sprite 19 to false
  13.     set the visible of sprite 20 to false
  14.     set the visible of sprite 21 to false
  15.     set the visible of sprite 22 to true
  16.     set the visible of sprite 23 to false
  17.   end if
  18.   
  19.   
  20.   repeat with n = 60 to 74
  21.     puppetsprite n, false
  22.     set the visible of sprite n + 20 to false
  23.   end repeat
  24.   go to "press"
  25.   
  26. end